home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / STRRPL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  248 b   |  12 lines

  1. #include <string.h>
  2.  
  3. void StrRpl( char *string, int startpos, int num, char *replacestring )
  4. {
  5.     char s1[240];
  6.  
  7.     strcpy( s1, string + startpos + num - 1 );
  8.     string[startpos] = 0;
  9.     strcat( string, replacestring );
  10.     strcat( string, s1 );
  11. }
  12.